sudo impacket-smbserver share -smb2support .
sudo impacket-smbserver share -smb2support . -user test -password test123
net use \\IP\share
net use \\IP\share /user:test test123
copy \\IP\share\File File
#Mount Share
net use Z: \\IP\share
Z:
dir
copy File .
VIM CHEAT SHEET
hoMovement
h # Left
j # Down
k # Up
l # Right
0 # Beginning of line (absolute start)
^ # First non-whitespace character
$ # End of line
w # Move to start of next word
e # Move to end of word
b # Move to beginning of previous word
Editing
d # Delete
c # Change (delete + insert)
y # Yank (copy)
dw # Delete word
cw # Change word
yw # Copy word
dd # Delete line
yy # Copy line
p # Paste after cursor
Undo / Redo
u # Undo
Ctrl+r # Redo
Modes
i # Insert before cursor
a # Insert after cursor
I # Insert at first non-whitespace
A # Insert at end of line
o # New line below
O # New line above
Esc # Return to normal mode
Macros
q<letter> # Start recording macro
q # Stop recording
@<letter> # Run macro
10@<letter> # Run macro 10 times
@@ # Repeat last macro
Useful
. # Repeat last change
% # Jump between matching brackets